Dynomotion

Group: DynoMotion Message: 2620 From: himykabibble Date: 12/6/2011
Subject: More Fun With Jogging....
Tom,

I've got several different jog modes implemented, some work well, some less so.... Here's what I have:

Constant velocity mode - this is a no-brainer.

"Step/Velocity mode" - This is implemented using Jog(), so it doesn't give dead-consistent steps, but isn't bad. The faster you spin the MPG, the fast the axis moves. I do this by using the ServoTick to time the interval between MPG input changes, and low-pass filter that, and use it to interpolate into a lookup table to generate a smoothed velocity scale factor. I don't have it working quite as smoothly as I'd like just yet, but it's not too far off, and gives me a single jog mode that allows me to move in ~0.001" steps at the low end, and full rapid rate (200IPM) at the high end. At this point, it's a bit rougher than the corresponding Mach3 function, but not by a lot.

"Smooth mode", using a modified version of your MPGSmooth code. This one, is..... well, not smooth. At the low end it's fine. At the high end it's OK. In between it gets "crunchy". I'm using the same mechanism as above to scale the MoveExp target distance based on MPG rotation speed (range is from 0.001"/step to about 0.025"/step. I suspect what's happening is I'm commanding moves that are far enough that it has to accelerate rapidly to near rapid speed, then has to decelerate rapidly, then another command comes in immediately. And, it over-shoots by several inches after I stop turning the MPG. Is it possible MoveExp is much happier with a higher-resolution MPG encoder? I measured mine, and it seems to be about 36 counts/rev.

I'm also getting occasional bogus counts out of the MPG. Whether I use your MPG reading code or mine, the result is about the same. If I spin the above a moderate speed, I see a long stream of "1" counts with an occasional "-1" tossed in. I'm doing a 32-sample de-bounce on the inputs, but perhaps that's not enough. I'll have to try filtering them better.

Regards,
Ray L.
Group: DynoMotion Message: 2621 From: Tom Kerekes Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Hi Ray,
 
What about the original MPGSmooth.c ?   Most low cost MPGs have 100pulses=400counts per rev so yours is 10X lower resolution.  I guess you are trying to avoid step ranges by some sort of compund effect where the faster it goes the bigger the steps so you don't just go faster but faster squared? 
 
You might incorporate the CaptureXYZMotionToFile.c example into the code to capture exactly what is going on.  You could even include the encoder count.  Then plot the response in Excel.  I find that really informative when looking at trajectory issues like this.
 
Regards
TK
 
 

Group: DynoMotion Message: 2622 From: himykabibble Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Tom,

With basically the out-of-the-box Smooth.c code, it's smooth, but it's impossible to go beyond a VERY slow jog. So yes, the faster the MPG goes, the bigger the steps is what I've implemented.

BTW - I also discovered how to avoid the frequent crashes when I re-load code - If I hit Stop first, THEN Init, it seems to never crash. Doesn't Init cleanly stop any running processes, or otherwise ensure the DSP is in a stable state before beginning to load new code? If I don't do the Stop, it will frequently just go out to lunch when I hit Init if the code has been changed at all.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> What about the original MPGSmooth.c ?   Most low cost MPGs have 100pulses=400counts per rev so yours is 10X lower resolution.  I guess you are trying to avoid step ranges by some sort of compund effect where the faster it goes the bigger the steps so you don't just go faster but faster squared? 
>  
> You might incorporate the CaptureXYZMotionToFile.c example into the code to capture exactly what is going on.  You could even include the encoder count.  Then plot the response in Excel.  I find that really informative when looking at trajectory issues like this.
>  
> Regards
> TK
>  
>  
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Tuesday, December 6, 2011 5:06 PM
> Subject: [DynoMotion] More Fun With Jogging....
>
>
>  
> Tom,
>
> I've got several different jog modes implemented, some work well, some less so.... Here's what I have:
>
> Constant velocity mode - this is a no-brainer.
>
> "Step/Velocity mode" - This is implemented using Jog(), so it doesn't give dead-consistent steps, but isn't bad. The faster you spin the MPG, the fast the axis moves. I do this by using the ServoTick to time the interval between MPG input changes, and low-pass filter that, and use it to interpolate into a lookup table to generate a smoothed velocity scale factor. I don't have it working quite as smoothly as I'd like just yet, but it's not too far off, and gives me a single jog mode that allows me to move in ~0.001" steps at the low end, and full rapid rate (200IPM) at the high end. At this point, it's a bit rougher than the corresponding Mach3 function, but not by a lot.
>
> "Smooth mode", using a modified version of your MPGSmooth code. This one, is..... well, not smooth. At the low end it's fine. At the high end it's OK. In between it gets "crunchy". I'm using the same mechanism as above to scale the MoveExp target distance based on MPG rotation speed (range is from 0.001"/step to about 0.025"/step. I suspect what's happening is I'm commanding moves that are far enough that it has to accelerate rapidly to near rapid speed, then has to decelerate rapidly, then another command comes in immediately. And, it over-shoots by several inches after I stop turning the MPG. Is it possible MoveExp is much happier with a higher-resolution MPG encoder? I measured mine, and it seems to be about 36 counts/rev.
>
> I'm also getting occasional bogus counts out of the MPG. Whether I use your MPG reading code or mine, the result is about the same. If I spin the above a moderate speed, I see a long stream of "1" counts with an occasional "-1" tossed in. I'm doing a 32-sample de-bounce on the inputs, but perhaps that's not enough. I'll have to try filtering them better.
>
> Regards,
> Ray L.
>
Group: DynoMotion Message: 2623 From: Tom Kerekes Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Hi Ray,
 
You are absolutely right.  Downloading changed code into a currently executing thread is likely to cause a crash and there is no protection against this in KMotionCNC.  I'm surprised we haven't heard of this before.  I suppose others don't change code as much as you do :}  KMotion.exe from the C Programs screen does have said protection.  So I'm assuming the issue is with KMotionCNC correct?
 
Here is a modified KMotionDLL that should protect against that problem.  It simply does a Kill to the Thread before downloading.
 
 
and the modified source code
 
 
Thanks
TK

Group: DynoMotion Message: 2624 From: himykabibble Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Tom,

Thanks!

Yes, I saw this with KMotionCNC (though I may have induced it once or twice with Mach3 as well, when Init on each Reset is enabled...).

My special talent is being able to break ANY software.....

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> You are absolutely right.  Downloading changed code into a currently executing thread is likely to cause a crash and there is no protection against this in KMotionCNC.  I'm surprised we haven't heard of this before.  I suppose others don't change code as much as you do :}  KMotion.exe from the C Programs screen does have said protection.  So I'm assuming the issue is with KMotionCNC correct?
>  
> Here is a modified KMotionDLL that should protect against that problem.  It simply does a Kill to the Thread before downloading.
>  
> http://dynomotion.com/Software/Patch/KMotionDLL.dll_withkill
>  
> and the modified source code
>  
> http://dynomotion.com/Software/Patch/KMotionDLL.cpp_withkill
>  
> Thanks
> TK
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Tuesday, December 6, 2011 5:50 PM
> Subject: [DynoMotion] Re: More Fun With Jogging....
>
>
>  
> Tom,
>
> With basically the out-of-the-box Smooth.c code, it's smooth, but it's impossible to go beyond a VERY slow jog. So yes, the faster the MPG goes, the bigger the steps is what I've implemented.
>
> BTW - I also discovered how to avoid the frequent crashes when I re-load code - If I hit Stop first, THEN Init, it seems to never crash. Doesn't Init cleanly stop any running processes, or otherwise ensure the DSP is in a stable state before beginning to load new code? If I don't do the Stop, it will frequently just go out to lunch when I hit Init if the code has been changed at all.
>
> Regards,
> Ray L.
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > What about the original MPGSmooth.c ?   Most low cost MPGs have 100pulses=400counts per rev so yours is 10X lower resolution.  I guess you are trying to avoid step ranges by some sort of compund effect where the faster it goes the bigger the steps so you don't just go faster but faster squared? 
> >  
> > You might incorporate the CaptureXYZMotionToFile.c example into the code to capture exactly what is going on.  You could even include the encoder count.  Then plot the response in Excel.  I find that really informative when looking at trajectory issues like this.
> >  
> > Regards
> > TK
> >  
> >  
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Tuesday, December 6, 2011 5:06 PM
> > Subject: [DynoMotion] More Fun With Jogging....
> >
> >
> >  
> > Tom,
> >
> > I've got several different jog modes implemented, some work well, some less so.... Here's what I have:
> >
> > Constant velocity mode - this is a no-brainer.
> >
> > "Step/Velocity mode" - This is implemented using Jog(), so it doesn't give dead-consistent steps, but isn't bad. The faster you spin the MPG, the fast the axis moves. I do this by using the ServoTick to time the interval between MPG input changes, and low-pass filter that, and use it to interpolate into a lookup table to generate a smoothed velocity scale factor. I don't have it working quite as smoothly as I'd like just yet, but it's not too far off, and gives me a single jog mode that allows me to move in ~0.001" steps at the low end, and full rapid rate (200IPM) at the high end. At this point, it's a bit rougher than the corresponding Mach3 function, but not by a lot.
> >
> > "Smooth mode", using a modified version of your MPGSmooth code. This one, is..... well, not smooth. At the low end it's fine. At the high end it's OK. In between it gets "crunchy". I'm using the same mechanism as above to scale the MoveExp target distance based on MPG rotation speed (range is from 0.001"/step to about 0.025"/step. I suspect what's happening is I'm commanding moves that are far enough that it has to accelerate rapidly to near rapid speed, then has to decelerate rapidly, then another command comes in immediately. And, it over-shoots by several inches after I stop turning the MPG. Is it possible MoveExp is much happier with a higher-resolution MPG encoder? I measured mine, and it seems to be about 36 counts/rev.
> >
> > I'm also getting occasional bogus counts out of the MPG. Whether I use your MPG reading code or mine, the result is about the same. If I spin the above a moderate speed, I see a long stream of "1" counts with an occasional "-1" tossed in. I'm doing a 32-sample de-bounce on the inputs, but perhaps that's not enough. I'll have to try filtering them better.
> >
> > Regards,
> > Ray L.
> >
>
Group: DynoMotion Message: 2628 From: himykabibble Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Tom,

I do want to integrate the Capture code, but the example is a bit incomplete, and has some extraneous stuff in it. Specifically:

1) How/where does gather_buffer get allocated? Can it just be allocated as a global in Capture.c?
2) What is the purpose of the following line:
for (k=0; k<1; k++) WaitNextTimeSlice();
The for loop seems completely extraneous to me.
3) X0, Y0, Z0 are assigned to, but then never used.
4) I'd like to (more like have to) put the capture code in a separate thread, but don't see how to get the trigger variable CS0_TimeExecuted linked to two separately compiled modules. I assume I can just as easily use a persist Var instead? How is it intended to be done?

The examples would be much easier to follow if each one was a clean, stand-alone example that could be run as-is.

Regards,
Ray L.


--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> What about the original MPGSmooth.c ?   Most low cost MPGs have 100pulses=400counts per rev so yours is 10X lower resolution.  I guess you are trying to avoid step ranges by some sort of compund effect where the faster it goes the bigger the steps so you don't just go faster but faster squared? 
>  
> You might incorporate the CaptureXYZMotionToFile.c example into the code to capture exactly what is going on.  You could even include the encoder count.  Then plot the response in Excel.  I find that really informative when looking at trajectory issues like this.
>  
> Regards
> TK
>  
>  
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Tuesday, December 6, 2011 5:06 PM
> Subject: [DynoMotion] More Fun With Jogging....
>
>
>  
> Tom,
>
> I've got several different jog modes implemented, some work well, some less so.... Here's what I have:
>
> Constant velocity mode - this is a no-brainer.
>
> "Step/Velocity mode" - This is implemented using Jog(), so it doesn't give dead-consistent steps, but isn't bad. The faster you spin the MPG, the fast the axis moves. I do this by using the ServoTick to time the interval between MPG input changes, and low-pass filter that, and use it to interpolate into a lookup table to generate a smoothed velocity scale factor. I don't have it working quite as smoothly as I'd like just yet, but it's not too far off, and gives me a single jog mode that allows me to move in ~0.001" steps at the low end, and full rapid rate (200IPM) at the high end. At this point, it's a bit rougher than the corresponding Mach3 function, but not by a lot.
>
> "Smooth mode", using a modified version of your MPGSmooth code. This one, is..... well, not smooth. At the low end it's fine. At the high end it's OK. In between it gets "crunchy". I'm using the same mechanism as above to scale the MoveExp target distance based on MPG rotation speed (range is from 0.001"/step to about 0.025"/step. I suspect what's happening is I'm commanding moves that are far enough that it has to accelerate rapidly to near rapid speed, then has to decelerate rapidly, then another command comes in immediately. And, it over-shoots by several inches after I stop turning the MPG. Is it possible MoveExp is much happier with a higher-resolution MPG encoder? I measured mine, and it seems to be about 36 counts/rev.
>
> I'm also getting occasional bogus counts out of the MPG. Whether I use your MPG reading code or mine, the result is about the same. If I spin the above a moderate speed, I see a long stream of "1" counts with an occasional "-1" tossed in. I'm doing a 32-sample de-bounce on the inputs, but perhaps that's not enough. I'll have to try filtering them better.
>
> Regards,
> Ray L.
>
Group: DynoMotion Message: 2632 From: Tom Kerekes Date: 12/6/2011
Subject: Re: More Fun With Jogging....
Hi Ray,
 
#1 - the gather_buffer is pre-allocated as an 8 MByte general purpose buffer.  The global memory for each thread is much smaller 64KBytes for Threads 1-6 and a few times more for Thread 7 so 10,000 samples of a few doubles (8 bytes each) might exceed this. 
 
#2 - The purpose of that loop is to skip n time slices.  As shown it is set to loop only once.  But if you don't care to see every 180us data sample you can change the value of 1 to a larger number and capture data for a longer period of time without having to upload so much data.  10000 data points @ 180us sample rate is 1.8 seconds of motion.  You can probably capture every 10 time slices unless you wan to see exactly how your encoder inputs behave.
 
#3 - oops.  Originally there was code there to detect when any motion begins to begin capturing data.  As it is it just captures data as soon as it runs. This works well when triggered by an M code embedded in a GCode file just before an area of interest.
 
#4 - Not sure why it would be necessary to place in a separate thread just ad it to your MPG loop.   But another oops.  CS0_TimeExecuted is the amount of time executed by Coordinated System 0.  Which is a way of waiting until GCode initiated coordinated motion begins (ie a G1 command.  You should remove that.
 
As I said it was intended and should work "out of he box" as a tool or capturing GCode Coordinated motion which is usually of most interest.
 
Regards
TK 
 
 

Group: DynoMotion Message: 2636 From: himykabibble Date: 12/7/2011
Subject: Re: More Fun With Jogging....
Tom,

I have the capture working.... kinda.... Every once in a while, it starts spewing the capture data to the console, and at the same points it seems to spew garbage into the file. Why? Seems to happen when I spin the MPG quickly, so my guess is it has something to do with DSP load? How do I prevent this?

The capture does show more noise on the MPG readout than I'd like to see, but only at fairly high spin rates. At low speeds it seems fine. But, with the filtering I'm doing, the velocity profile, plotted in Excel, actually looks pretty good - a fairly nice S-shaped acceleration over about one second.

Regards,
Ray L.

--- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@...> wrote:
>
> Hi Ray,
>  
> #1 - the gather_buffer is pre-allocated as an 8 MByte general purpose buffer.  The global memory for each thread is much smaller 64KBytes for Threads 1-6 and a few times more for Thread 7 so 10,000 samples of a few doubles (8 bytes each) might exceed this. 
>  
> #2 - The purpose of that loop is to skip n time slices.  As shown it is set to loop only once.  But if you don't care to see every 180us data sample you can change the value of 1 to a larger number and capture data for a longer period of time without having to upload so much data.  10000 data points @ 180us sample rate is 1.8 seconds of motion.  You can probably capture every 10 time slices unless you wan to see exactly how your encoder inputs behave.
>  
> #3 - oops.  Originally there was code there to detect when any motion begins to begin capturing data.  As it is it just captures data as soon as it runs. This works well when triggered by an M code embedded in a GCode file just before an area of interest.
>  
> #4 - Not sure why it would be necessary to place in a separate thread just ad it to your MPG loop.   But another oops.  CS0_TimeExecuted is the amount of time executed by Coordinated System 0.  Which is a way of waiting until GCode initiated coordinated motion begins (ie a G1 command.  You should remove that.
>  
> As I said it was intended and should work "out of he box" as a tool or capturing GCode Coordinated motion which is usually of most interest.
>  
> Regards
> TK 
>  
>  
>
> From: himykabibble <jagboy@...>
> To: DynoMotion@yahoogroups.com
> Sent: Tuesday, December 6, 2011 9:58 PM
> Subject: [DynoMotion] Re: More Fun With Jogging....
>
>
>  
> Tom,
>
> I do want to integrate the Capture code, but the example is a bit incomplete, and has some extraneous stuff in it. Specifically:
>
> 1) How/where does gather_buffer get allocated? Can it just be allocated as a global in Capture.c?
> 2) What is the purpose of the following line:
> for (k=0; k<1; k++) WaitNextTimeSlice();
> The for loop seems completely extraneous to me.
> 3) X0, Y0, Z0 are assigned to, but then never used.
> 4) I'd like to (more like have to) put the capture code in a separate thread, but don't see how to get the trigger variable CS0_TimeExecuted linked to two separately compiled modules. I assume I can just as easily use a persist Var instead? How is it intended to be done?
>
> The examples would be much easier to follow if each one was a clean, stand-alone example that could be run as-is.
>
> Regards,
> Ray L.
>
>
> --- In DynoMotion@yahoogroups.com, Tom Kerekes <tk@> wrote:
> >
> > Hi Ray,
> >  
> > What about the original MPGSmooth.c ?   Most low cost MPGs have 100pulses=400counts per rev so yours is 10X lower resolution.  I guess you are trying to avoid step ranges by some sort of compund effect where the faster it goes the bigger the steps so you don't just go faster but faster squared? 
> >  
> > You might incorporate the CaptureXYZMotionToFile.c example into the code to capture exactly what is going on.  You could even include the encoder count.  Then plot the response in Excel.  I find that really informative when looking at trajectory issues like this.
> >  
> > Regards
> > TK
> >  
> >  
> >
> > From: himykabibble <jagboy@>
> > To: DynoMotion@yahoogroups.com
> > Sent: Tuesday, December 6, 2011 5:06 PM
> > Subject: [DynoMotion] More Fun With Jogging....
> >
> >
> >  
> > Tom,
> >
> > I've got several different jog modes implemented, some work well, some less so.... Here's what I have:
> >
> > Constant velocity mode - this is a no-brainer.
> >
> > "Step/Velocity mode" - This is implemented using Jog(), so it doesn't give dead-consistent steps, but isn't bad. The faster you spin the MPG, the fast the axis moves. I do this by using the ServoTick to time the interval between MPG input changes, and low-pass filter that, and use it to interpolate into a lookup table to generate a smoothed velocity scale factor. I don't have it working quite as smoothly as I'd like just yet, but it's not too far off, and gives me a single jog mode that allows me to move in ~0.001" steps at the low end, and full rapid rate (200IPM) at the high end. At this point, it's a bit rougher than the corresponding Mach3 function, but not by a lot.
> >
> > "Smooth mode", using a modified version of your MPGSmooth code. This one, is..... well, not smooth. At the low end it's fine. At the high end it's OK. In between it gets "crunchy". I'm using the same mechanism as above to scale the MoveExp target distance based on MPG rotation speed (range is from 0.001"/step to about 0.025"/step. I suspect what's happening is I'm commanding moves that are far enough that it has to accelerate rapidly to near rapid speed, then has to decelerate rapidly, then another command comes in immediately. And, it over-shoots by several inches after I stop turning the MPG. Is it possible MoveExp is much happier with a higher-resolution MPG encoder? I measured mine, and it seems to be about 36 counts/rev.
> >
> > I'm also getting occasional bogus counts out of the MPG. Whether I use your MPG reading code or mine, the result is about the same. If I spin the above a moderate speed, I see a long stream of "1" counts with an occasional "-1" tossed in. I'm doing a 32-sample de-bounce on the inputs, but perhaps that's not enough. I'll have to try filtering them better.
> >
> > Regards,
> > Ray L.
> >
>
Group: DynoMotion Message: 2638 From: Tom Kerekes Date: 12/7/2011
Subject: Re: More Fun With Jogging....
Hi Ray,
 
Not sure why that is happening.  The printf and fprintf functions are not re-entrant and thread safe so maybe you are printing from someplace else?   I cant see how the MPG speed would have to do with it as it should send the data to the file after the MPG motion and the data has been captured to memory.  If you send me the C code I can look it over.
 
Regards
TK